@import url("https://fonts.googleapis.com/css2?family=Bona+Nova:ital,wght@0,400;0,700;1,400&family=Exo+2:ital,wght@0,200;0,400;0,700;1,200;1,400;1,700&display=swap");

.bona-nova {
  font-family: "Bona Nova", serif;
}
.exo-2 {
  font-family: "Exo 2", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-size: 18px;
  font-family: "Exo 2", sans-serif;
  font-weight: 400;
}

.black {
  color: black;
}

#up-arrow {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  background: rgb(0, 0, 0);
  border-radius: 50%;
  display: none;

  background-image: url(../img/up.svg);
  background-position: center 12px;
  background-size: 24px;
  background-repeat: no-repeat;
}


.text {
  margin-top: 40px;
}

.text li {
  text-align: justify;
  margin-bottom: 20px;
}

.header {
  width: 100%;
  height: 120px;
  background-color: #525252;
}

.container {
  max-width: 1300px;

  margin-left: auto;
  margin-right: auto;
}

.row {
  width: 100%;
  height: auto;
}

.row::after {
  content: "";
  display: block;
  clear: both;
}

.logo {
  width: 30%;
  height: 120px;
  float: left;
}

.logo-img{
  width: 30%;
}

.logo-img1{
  width: 60%;
}

.contacts {
  width: 70%;
  height: 120px;
  float: left;

  text-align: right;
  font-size: 40px;
  line-height: 120px;
  font-weight: 700;
}

.img-logo {
  height: 80px;
  margin-top: 20px;
}

.menu {
  width: 100%;
  height: 50px;
  background-color: black;
}

.contact {
  text-align: center;
  text-decoration: none;
  font-size: 20px;
  line-height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  display: block;
  text-align: center;
}

.text-autor {
  font-size: 20px;
}

.menu-link {
  color: white;
  text-decoration: none;
  font-size: 20px;
  line-height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  display: inline-block;
  transition: 0.5s;
}

.links {
  color: black;
  text-decoration: none;
  font-size: 20px;
  line-height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  display: block;
  text-align: center;
}

.menu-link:hover {
  background-color: #525252;
}

.w-25 {
  float: left;
  width: 25%;
  position: relative;
  padding: 10px;
}

.rezina-img {
  max-width: 100%;
  height: auto;
}

.bg {
  position: relative;
  width: 100%;
  height: 160px;
  background-image: url(../img/1.jpeg);
  background-size: 300px;
  background-position: center;
  transition: 1s;
}

.bg:hover {
  background-size: 600px;
}

.title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  text-align: center;
  line-height: 100px;
  color: white;
  background: linear-gradient(
    170deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6965379901960784) 100%
  );
  font-size: 20px;
  opacity: 0;
  transition: 1s;
}

.bg:hover .title {
  opacity: 1;
}

.image-game {
  width: 150px;
  height: 200px;
}

.w60 {
  float: left;
  width: 60%;
  padding: 20px;
}

.w40 {
  float: left;
  width: 40%;
  padding: 20px;
}

.res-img {
  max-width: 100%;
  height: auto;
}